@font-face {
  font-family: 'DINPRO-REGULAR';
  src: url(../fonts/DINPRO-REGULAR.ttf) format('truetype'), url(../fonts/DINPRO-REGULAR.eot) format('eot'), url(../fonts/DINPRO-REGULAR.woff) format('woff'), url(../fonts/DINPRO-REGULAR.woff2) format('woff2');
}
@font-face {
  font-family: 'AGENCYR';
  src: url(../fonts/AGENCYR.ttf) format('truetype'), url(../fonts/AGENCYR.eot) format('eot'), url(../fonts/AGENCYR.woff) format('woff'), url(../fonts/AGENCYR.woff2) format('woff2');
}
@font-face {
  font-family: 'AGENCYB';
  src: url(../fonts/AGENCYB.ttf) format('truetype'), url(../fonts/AGENCYB.eot) format('eot'), url(../fonts/AGENCYB.woff) format('woff'), url(../fonts/AGENCYB.woff2) format('woff2');
}
@font-face {
  font-family: 'Verdana';
  src: url(../fonts/Verdana.ttf) format('truetype'), url(../fonts/Verdana.eot) format('eot'), url(../fonts/Verdana.woff) format('woff'), url(../fonts/Verdana.woff2) format('woff2');
}
@font-face {
  font-family: 'EuphemiaCAS';
  src: url(../fonts/EuphemiaCAS.ttf) format('truetype'), url(../fonts/EuphemiaCAS.eot) format('eot'), url(../fonts/EuphemiaCAS.woff) format('woff'), url(../fonts/EuphemiaCAS.woff2) format('woff2');
}

.mbx {
  padding: 15px 0;
  background: #f3f5f7;
  font-size: 18px;
  color: #373737;
}
.mbx span {
  color: #0d95e8;
}
.mbx a:hover {
  text-decoration: underline;
}

body {
  font-family: "Verdana";
}
.ui.container {
  padding: 0 15px;
  position: relative;
  width: 1200px;
}
.language-box {
  margin-left: 40px;
}
.language-box a {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  margin: 0 5px;
  padding: 0 10px;
  border-bottom: 1px solid transparent;
}
.language-box a.active {
  border-color: #0059a0;
  color: #0059a0;
}
#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
#header.active {
  top: 0;
  background-color: #6094d3;
}
#header .nav {
  display: inline-block;
  width: 100%;
}
#header .nav .ui.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: auto;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin: 0 20px;
  font-size: 16px;
  color: black;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 100;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  color: #0059a0;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
  padding: 25px 0;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 15px;
  background: #fff;
  top: 100%;
  left: -10px;
  white-space: nowrap;
  min-width: 180px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 12px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .search-pro {
  position: relative;
}
#header .nav .ui.menu .search-pro input {
  height: 37px;
  width: 170px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 30px;
  padding: 0 30px;
}
#header .nav .ui.menu .search-pro button {
  border: none;
  background-color: transparent;
  position: absolute;
  right: 0;
  top: -1px;
}
#header .nav .ui.menu .h-search {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  margin-right: 0;
  cursor: pointer;
  cursor: hand;
}
#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner {
  position: relative;
}
#banner .slick-arrow {
  font-size: 20px;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .slick-arrow:hover {
  background-color: #6094d3;
  color: #fff;
}
#banner .slick-prev {
  left: 15px;
}
#banner .slick-next {
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: #fd2318;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: #fd2318;
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
table {
  width: 100%;
  margin-bottom: 20px;
  word-break: break-word;
}
table td,
table th {
  padding: 5px 10px;
  border: 1px solid #666;
  /*width: 50%;*/
}
table td:first-child {
  color: #2d2d2d;
}
table td:last-child {
  color: #666;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a {
  width: 50px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a:hover {
  background-color: #fd2318;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: #fd2318 !important;
}
#mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 20;
}
#mobile:before {
  content: '';
  width: 100%;
  height: 200%;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
#mobile .m-search {
  padding: 10px 15px;
  background: #0d95e8;
  z-index: 2;
  position: relative;
}
#mobile .m-search form {
  width: 100%;
  padding-right: 50px;
  position: relative;
}
#mobile .m-search form input {
  width: 100%;
  line-height: 40px;
  height: 40px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background: url("../images/icon-search-black.png") center left 5px no-repeat white;
  background-size: 14px;
  padding-left: 25px;
  font-size: 14px;
}
#mobile .m-search form input[type="submit"] {
  width: 40px;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/icon-search-white.png") center center no-repeat;
}
#mobile .m-logo {
  text-align: center;
  background: #333;
  z-index: 1;
  position: relative;
  line-height: 60px;
  height: 60px;
}
#mobile .m-logo img {
  max-height: 40px;
  display: inline-block;
  vertical-align: middle;
  max-width: 200px;
}
#mobile .m-btn {
  position: absolute;
  bottom: 16px;
  left: 15px;
  width: 30px;
  z-index: 2;
  height: 24px;
}
#mobile .m-btn i {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: white;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .m-btn i.ie1 {
  margin-top: -10px;
}
#mobile .m-btn i.ie3 {
  margin-top: 10px;
}
#mobile .box {
  position: fixed;
  background: white;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 0;
  height: 100%;
  overflow: auto;
  top: 0;
  padding: 25px;
  padding-top: 145px;
}
#mobile .m-nav ul li {
  display: block;
}
#mobile .m-nav ul li a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  text-transform: capitalize;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-right: 40px;
}
#mobile .m-nav ul li a:hover {
  background: #eee;
  padding-left: 15px;
}
#mobile .m-nav ul li a:before {
  content: "\f105";
  font-family: "FontAwesome";
  position: absolute;
  right: 10px;
  top: 10px;
}
#mobile .m-nav ul li.children > a:before {
  content: "\f107";
}
#mobile .m-nav ul li.children.active > a:before {
  content: "\f106";
}
#mobile .m-nav ul li ul {
  display: none;
}
#mobile .m-nav ul li li a {
  padding-left: 30px;
  position: relative;
  font-size: 14px;
}
#mobile .m-nav ul li li a:after {
  content: '-';
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .m-nav ul li li a:hover {
  padding-left: 30px;
}
#mobile .yuy {
  padding: 20px 0;
}
#mobile .yuy h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
#mobile .yuy ul li {
  width: auto;
  display: inline-block;
  margin-right: 5px;
  font-size: 14px;
  padding-right: 5px;
  border-right: 1px solid #eee;
  margin-bottom: 5px;
}
#mobile .yuy ul li img {
  max-width: 30px;
}
#mobile h6 {
  font-size: 20px;
  text-align: center;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #eee;
}
#mobile #gotop {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid #eee;
  background: white;
  font-size: 14px;
  text-align: center;
  line-height: 40px;
  position: fixed;
  right: 10px;
  bottom: 20px;
  display: none;
}
#mobile.active .m-btn i {
  margin: 0 !important;
}
#mobile.active .m-btn i.ie1 {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#mobile.active .m-btn i.ie2 {
  opacity: 0;
}
#mobile.active .m-btn i.ie3 {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#mobile.active:before {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
#mobile.active .box {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
@media screen and (max-width: 1000px) {
  #banner,
  .inner-page {
    margin-top: 120px;
  }
  .inner-banner {
    display: none;
  }
  .inner-page {
    padding-top: 40px;
  }
}
#banner ul li {
  position: relative;
}
#banner ul li .content {
  position: absolute;
  width: 100%;
  left: 0;
  top: 55%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#banner ul li .content h2 {
  font-family: "EuphemiaCAS";
  font-size: 60px;
  line-height: 1.1;
  color: rgba(17, 36, 51, 0.8);
  letter-spacing: 2px;
}
#banner ul li .content p {
  margin-top: 60px;
  font-size: 17px;
  color: #62686a;
  line-height: 2;
}
#banner ul li .content a {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  background-color: #6094d3;
  padding: 20px 35px;
  border-radius: 40px;
  margin-top: 60px;
}
.our-about {
  background: url(../images/about-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 130px 0;
}
.our-about .box {
  padding: 0 4%;
}
.our-about .box .left {
  width: 50%;
  vertical-align: middle;
}
.our-about .box .right {
  width: 50%;
  vertical-align: middle;
}
.our-about .box .right h2 {
  font-size: 46px;
  line-height: 1.2;
}
.our-about .box .right h4 {
  font-size: 21px;
  letter-spacing: 5px;
  color: #4c6373;
  margin-top: 40px;
}
.our-about .box .right p {
  font-size: 17px;
  color: #62686a;
  max-width: 690px;
  margin-top: 25px;
  line-height: 30px;
  opacity: .7;
}
.our-about .box .right a {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  background-color: #6094d3;
  padding: 20px 35px;
  border-radius: 40px;
  margin-top: 60px;
}
.our-history {
  padding-top: 90px;
}
.our-history h2 {
  font-size: 32px;
  color: #0b2033;
  font-weight: bold;
  opacity: .8;
}
.our-history .box{
  margin-top: 60px;
}
.our-history{
  padding: 60px 0;
  background: url(../images/history-bg.jpg) no-repeat center;
  background-size: cover;
}
.our-history .box ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.our-history .box ul li h4 {
  font-size: 64px;
  font-family: "arial";
  color: #62686a;
}
.our-history .box ul li p {
  font-size: 25px;
  color: #0b2033;
  opacity: .6;
}
.ty-title {
  position: relative;
  z-index: 1;
}
.ty-title::before {
  content: url(../images/before-icon.png);
  position: absolute;
  left: 50%;
  top: 45px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}
.ty-title h2 {
  font-size: 60px;
  font-weight: bold;
  color: #0b2033;
}
.ty-title p {
  font-size: 17px;
  color: #62686a;
  line-height: 2;
}
.our-product {
  padding: 60px 0 100px;
  position: relative;
}
.our-product .yy {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.our-product .yy img {
  position: absolute;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  transition: 1s ease;
}
.our-product .yy img.one {
  left: 0;
  top: 5%;
}
.our-product .yy img.two {
  right: 0;
  top: 60%;
}
.our-product .box {
  margin-top: 60px;
}
.our-product .box .tab-nav ul li {
  display: inline-block;
  margin: 0 40px;
}
.our-product .box .tab-nav ul li .img2 {
  display: none;
}
.our-product .box .tab-nav ul li p {
  font-size: 18px;
  margin-top: 20px;
}
.our-product .box .tab-nav ul li .line {
  margin-top: 15px;
  opacity: 0;
}
.our-product .box .tab-nav ul li:hover .img1,
.our-product .box .tab-nav ul li.active .img1 {
  display: none;
}
.our-product .box .tab-nav ul li:hover .img2,
.our-product .box .tab-nav ul li.active .img2 {
  display: inline-block;
}
.our-product .box .tab-nav ul li:hover p,
.our-product .box .tab-nav ul li.active p {
  color: #6094d3;
}
.our-product .box .tab-nav ul li:hover .line,
.our-product .box .tab-nav ul li.active .line {
  opacity: 1;
}
.our-product .box .list {
  margin-top: 60px;
}
.our-product .box .list ul {
  margin: -30px -15px;
}
.our-product .box .list ul li {
  padding: 30px 15px;
}
.our-product .box .list ul li .content {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
}
.our-product .box .list ul li .content::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-product .box .list ul li .content .join {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-product .box .list ul li .content:hover::before {
  opacity: 1;
}
.our-product .box .list ul li .content:hover .join {
  opacity: 1;
}
.our-product .box .list ul li .name {
  font-size: 18px;
  font-weight: bold;
  margin-top: 25px;
}
.our-product .box .list ul li p {
  font-size: 18px;
  color: #8c8c8d;
  margin-top: 10px;
  overflow: hidden;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.big-box {
  background-color: #ecf1f7;
  padding: 70px 0;
  position: relative;
}
.big-box .yy {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.big-box .yy img {
  position: absolute;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  transition: 1s ease;
}
.big-box .yy img.one {
  left: 160px;
  top: 25%;
}
.big-box .yy img.two {
  right: 100px;
  top: 50%;
}
.big-box .i-advantage {
  position: relative;
  z-index: 1;
}
.big-box .i-advantage .box {
  margin-top: 100px;
}
.big-box .i-advantage ul {
  margin: -15px;
}
.big-box .i-advantage ul li {
  padding: 15px;
  width: 33.33%;
}
.big-box .i-advantage ul li .content {
  background-color: #fff;
  padding: 80px 30px;
  border-radius: 40px;
}
.big-box .i-advantage ul li .content:hover img {
  -webkit-filter: none;
  filter: none;
}
.big-box .i-advantage ul li i {
  display: block;
  margin-top: 25px;
  min-height: 92px;
  line-height: 92px;
}
.big-box .i-advantage ul li i img {
  vertical-align: middle;
}
.big-box .i-advantage ul li img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-filter: gray;
  filter: gray;
}
.big-box .i-advantage ul li h3 {
  font-size: 27px;
  margin-top: 45px;
}
.big-box .i-advantage ul li p {
  font-size: 16px;
  color: #62686a;
  min-height: 120px;
  margin-top: 10px;
}
.big-box .our-message {
  padding-top: 130px;
}
.big-box .our-message h2 {
  font-size: 32px;
  font-weight: bold;
}
.big-box .our-message p {
  font-size: 15px;
  margin-top: 20px;
}
.big-box .our-message .box {
  margin-top: 30px;
}
.big-box .our-message .box ul li {
  width: 33.33%;
}
.big-box .our-message input {
  width: 100%;
  height: 48px;
  padding: 0 40px;
  border: none;
  border-radius: 30px;
}
.big-box .our-message button {
  font-size: 17px;
  color: #4a4949;
  background-color: #6094d3;
  position: absolute;
  right: 0;
  top: 0;
  height: 48px;
  border: none;
  padding: 0 30px;
  border-radius: 30px;
}
.big-box .why-choose {
  padding-top: 100px;
  position: relative;
}
.big-box .why-choose .box {
  padding: 0 5%;
}
.big-box .why-choose .box .left {
  width: 60%;
  vertical-align: middle;
}
.big-box .why-choose .box .right {
  width: 40%;
  vertical-align: middle;
  max-width: 620px;
}
.big-box .why-choose .box .right h2 {
  font-size: 46px;
}
.big-box .why-choose .box .right p {
  font-size: 17px;
}
.big-box .why-choose .box .right ul {
  margin-top: 60px;
  padding-right: 80px;
}
.big-box .why-choose .box .right ul li {
  padding-left: 90px;
  position: relative;
}
.big-box .why-choose .box .right ul li:not(:last-child) {
  margin-bottom: 50px;
}
.big-box .why-choose .box .right ul li i {
  position: absolute;
  left: 0;
  top: 0;
}
.big-box .why-choose .box .right ul li h4 {
  font-size: 21px;
  color: #6094d3;
}
.our-news {
  padding: 90px 0;
  background: url(../images/news-bg.jpg) no-repeat bottom center;
}
.our-news .box {
  margin-top: 160px;
  position: relative;
}
.our-news .box::before {
  content: "";
  position: absolute;
  top: -90px;
  bottom: -90px;
  left: -140px;
  right: -140px;
  background-color: #ecf1f7;
}
.our-news .box ul {
  margin: 0 -17px;
}
.our-news .box ul li {
  width: 33.33%;
  padding: 0 17px;
}
.our-news .box ul li a {
  display: block;
  background-color: #f8f9fd;
  padding: 80px 45px 60px;
  position: relative;
  border-radius: 40px;
}
.our-news .box ul li a::before {
  content: url(../images/news-icon.png);
  position: absolute;
  left: 0;
  top: -25px;
}
.our-news .box ul li a p {
  font-size: 17px;
  color: #62686a;
  line-height: 2;
  margin-bottom: 35px;
}
.our-news .box ul li a .left {
  width: auto;
  vertical-align: middle;
}
.our-news .box ul li a .right {
  width: auto;
  vertical-align: middle;
  font-size: 17px;
  color: #62686a;
  margin-left: 20px;
}
#footer {
  background: url(../images/foot-bg.jpg) no-repeat center top;
}
#footer .footer-top {
  padding: 160px 0 90px;
}
#footer .footer-top .footer-block h4 {
  font-size: 21px;
  color: #585757;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 15px 0;
}
#footer .footer-top .footer-block ul {
  margin-top: 20px;
}
#footer .footer-top .footer-block ul li {
  font-size: 15px;
  line-height: 2;
  color: #585757;
  font-weight: bold;
}
#footer .footer-top .footer-block.logo {
  width: 30%;
  padding-right: 6%;
}
#footer .footer-top .footer-block.logo p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 20px;
}
#footer .footer-top .footer-block.logo .social-links {
  margin-top: 15px;
}
#footer .footer-top .footer-block.logo .social-links a {
  font-size: 20px;
}
#footer .footer-top .footer-block.logo .social-links a:not(:last-child) {
  margin-right: 15px;
}
#footer .footer-top .footer-block.links {
  width: 25%;
}
#footer .footer-top .footer-block.product {
  width: 25%;
}
#footer .footer-top .footer-block.contact {
  width: 20%;
}
#footer .footer-bottom {
  border-top: 2px solid #f3f4f7;
  padding: 10px 0;
}
#footer .footer-bottom .box {
  font-size: 13px;
  color: #585757;
}
#footer .footer-bottom .box p,
#footer .footer-bottom .box a {
  display: inline-block;
  vertical-align: middle;
}
#ewm {
  width: 100px;
  border: 5px solid #fff;
  margin-top: 25px;
}
@media screen and (max-width: 1400px) {
  .big-box .why-choose .box .right ul {
    padding-right: 0;
  }
  #banner ul li .content h2 {
    font-size: 50px;
  }
  #banner ul li .content p {
    margin-top: 30px;
  }
  #banner ul li .content a {
    margin-top: 30px;
  }
  #header {
    top: 30px;
  }
  .our-about .box {
    padding: 0 15px;
  }
  .big-box .why-choose .box {
    padding: 0 15px;
  }
}
@media screen and (max-width: 1200px) {
  .ui.container {
    width: 1000px;
  }
  #banner ul li .content h2 {
    font-size: 40px;
    letter-spacing: 0;
  }
  #banner ul li .content p {
    font-size: 15px;
  }
  #banner ul li .content a {
    font-size: 14px;
    padding: 10px 20px;
  }
  .our-about .box .right h2 {
    font-size: 35px;
  }
  .our-about .box .right h4 {
    font-size: 18px;
    margin-top: 20px;
  }
  .our-about .box .right p {
    font-size: 16px;
  }
  .our-about .box .right a {
    margin-top: 30px;
    font-size: 14px;
    padding: 10px 20px;
  }
  .our-history .box ul li h4 {
    font-size: 50px;
  }
  .our-history .box ul li p {
    font-size: 18px;
  }
  .ty-title h2 {
    font-size: 45px;
  }
  .big-box .i-advantage ul li p {
    font-size: 14px;
  }
  .big-box .i-advantage ul li .content {
    padding: 40px 15px;
  }
  .big-box .i-advantage ul li h3 {
    margin-top: 20px;
  }
  .big-box .i-advantage ul li i {
    margin-top: 10px;
  }
  .big-box .why-choose .box .right p {
    font-size: 15px;
  }
  .big-box .why-choose .box .right ul {
    margin-top: 30px;
  }
  .big-box .why-choose .box .right h2 {
    font-size: 35px;
  }
  .big-box .why-choose .box .right ul li:not(:last-child) {
    margin-bottom: 20px;
  }
  .our-news .box ul li a {
    padding: 60px 20px;
  }
  .our-news .box ul li a p {
    font-size: 15px;
  }
  .our-news .box ul li a .right {
    font-size: 15px;
  }
}
@media screen and (max-width: 1000px) {
  .mbx{
    display: none;
  }
  .ui.container {
    width: 700px;
  }
  #ewm {
    display: none;
  }
  #header {
    display: none;
  }
  #mobile {
    display: block;
  }
  #banner > span {
    display: none;
  }
  .our-about {
    padding: 90px 0;
  }
  .our-about .box .right p {
    font-size: 14px;
    line-height: 2;
  }
  .our-about .box .right h4 {
    letter-spacing: 2px;
  }
  .our-history h2 {
    font-size: 24px;
  }
  .our-history .box ul li h4 {
    font-size: 40px;
  }
  .our-history .box ul li p {
    font-size: 14px;
  }
  .ty-title h2 {
    font-size: 35px;
  }
  .ty-title p {
    font-size: 14px;
  }
  .our-product .box .list ul li .name {
    font-size: 14px;
    margin-top: 10px;
  }
  .our-product .box .list ul li p {
    font-size: 14px;
  }
  .our-product .box .list ul {
    margin: -10px;
  }
  .our-product .box .list ul li {
    padding: 10px;
  }
  .our-product .box {
    margin-top: 30px;
  }
  .our-product .yy {
    display: none;
  }
  .big-box .yy {
    display: none;
  }
  .our-product .box .tab-nav ul li {
    margin: 0 20px;
  }
  .our-product .box .list {
    margin-top: 30px;
  }
  .ty-title::before {
    display: none;
  }
  .big-box .i-advantage .box {
    margin-top: 30px;
  }
  .big-box .i-advantage ul li {
    width: 100%;
  }
  .big-box .i-advantage ul li p {
    min-height: 63px;
  }
  .big-box .our-message {
    padding-top: 90px;
  }
  .big-box .our-message .box ul li {
    width: 100%;
  }
  .big-box .our-message .box ul li:not(:last-child) {
    margin-bottom: 20px;
  }
  .big-box .why-choose {
    padding-top: 90px;
  }
  .big-box .why-choose .box .left {
    display: none;
  }
  .big-box .why-choose .box .right {
    width: 100%;
    max-width: 100%;
  }
  .our-news .box ul {
    margin: -20px;
  }
  .our-news .box ul li {
    width: 100%;
    padding: 20px;
  }
  .our-news .box::before {
    display: none;
  }
  .our-news .box {
    margin-top: 60px;
  }
  .our-news .box ul li a p {
    margin-bottom: 20px;
  }
  .our-news {
    background: transparent;
  }
  #footer .footer-top {
    padding: 60px 0;
  }
  #footer .footer-top .footer-block.links {
    display: none;
  }
  #footer .footer-top .footer-block.product {
    display: none;
  }
  #footer .footer-top .footer-block.logo {
    width: 50%;
  }
  #footer .footer-top .footer-block.contact {
    width: 50%;
  }
}
@media screen and (max-width: 700px) {
  .ui.container {
    width: 100%;
  }
  #banner ul li .content h2 {
    font-size: 30px;
  }
  #banner ul li .content p {
    font-size: 12px;
    margin-top: 15px;
  }
  #banner ul li .content a {
    margin-top: 15px;
  }
  .our-about {
    padding: 60px 0;
  }
  .our-about .box .left {
    display: none;
  }
  .our-about .box .right {
    width: 100%;
  }
  .our-about .box .right h2 {
    font-size: 24px;
  }
  .our-history {
    display: none;
  }
  .our-product {
    padding: 60px 0;
  }
  .our-product .box .tab-nav ul li {
    margin: 0 10px;
  }
  .big-box .i-advantage {
    display: none;
  }
  .big-box .our-message {
    display: none;
  }
  .big-box .why-choose {
    padding-top: 0;
  }
  .our-news {
    padding: 60px 0;
  }
  #banner ul li .content {
    top: 50%;
  }
}
@media screen and (max-width: 500px) {
  #banner ul li {
    height: 320px;
  }
  #banner ul li > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  #banner ul li .content h2 {
    font-size: 24px;
  }
  #banner ul li .content p {
    display: none;
  }
  .our-about .box .right p {
    font-size: 12px;
  }
  .our-about .box .right h4 {
    font-size: 16px;
  }
  .ty-title p {
    display: none;
  }
  .big-box .why-choose .box .right h2 {
    font-size: 24px;
  }
  .big-box .why-choose .box .right p {
    font-size: 12px;
  }
  .big-box .why-choose .box .right ul li i {
    display: none;
  }
  .big-box .why-choose .box .right ul li {
    padding-left: 0;
  }
  .our-news .box ul li a::before {
    display: none;
  }
  .our-news .box {
    margin-top: 30px;
  }
  .our-news .box ul li a {
    padding: 30px 15px;
  }
  .our-news .box ul li a p {
    font-size: 12px;
  }
  #footer .footer-top .footer-block.logo {
    width: 100%;
    padding-right: 0;
  }
  #footer .footer-top .footer-block.logo p {
    font-size: 12px;
  }
  #footer .footer-top .footer-block ul li {
    font-size: 12px;
  }
  .our-about {
    overflow: hidden;
  }
  .our-product {
    overflow: hidden;
  }
  .big-box {
    overflow: hidden;
  }
  .our-news {
    overflow: hidden;
  }
  #footer {
    overflow: hidden;
  }
}
.inner-banner {
  height: 580px;
  background: url(../images/inner-banner.jpg) no-repeat center;
}
.our-prodet .prodet-1 {
  padding-top: 75px;
}
.our-prodet .prodet-1 .box .gallery {
  width: 10%;
  vertical-align: middle;
}
.our-prodet .prodet-1 .box .gallery ul {
  margin: -5px;
}
.our-prodet .prodet-1 .box .gallery ul li {
  padding: 5px;
}
.our-prodet .prodet-1 .box .gallery ul li a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  height: 123px;
}
.our-prodet .prodet-1 .box .img {
  padding-left: 20px;
  width: 40%;
  vertical-align: middle;
}
.our-prodet .prodet-1 .box .img > img{
  border-radius: 10px;
}
.our-prodet .prodet-1 .box .img ul {
  border: 1px solid #bfbfbf;
  border-radius: 10px;
  overflow: hidden;
}
.our-prodet .prodet-1 .box .img ul li a {
  display: block;
  height: 520px;
}
.our-prodet .prodet-1 .box .img ul li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.our-prodet .prodet-1 .box .text {
  padding-left: 65px;
  width: 50%;
  vertical-align: middle;
}
.our-prodet .prodet-1 .box .text h3 {
  font-size: 22px;
  font-weight: bold;
}
.our-prodet .prodet-1 .box .text .content {
  font-size: 15px;
  margin-top: 20px;
}
.our-prodet .prodet-1 .box .text .mode {
  margin-top: 30px;
}
.our-prodet .prodet-1 .box .text .mode h4 {
  font-size: 17px;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
}
.our-prodet .prodet-1 .box .text .mode ul {
  display: inline-block;
  vertical-align: middle;
}
.our-prodet .prodet-1 .box .text .mode ul li {
  font-size: 15px;
  color: #737373;
  font-weight: bold;
  margin: 0 5px;
}
.our-prodet .prodet-1 .box .text .color {
  margin-top: 20px;
}
.our-prodet .prodet-1 .box .text .color h4 {
  font-size: 17px;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
}
.our-prodet .prodet-1 .box .text .color .img {
  display: inline-block;
  vertical-align: middle;
}
.our-prodet .prodet-1 .box .text .share {
  margin-top: 20px;
}
.our-prodet .prodet-1 .box .text .share h4 {
  font-size: 17px;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
}
.our-prodet .prodet-1 .box .text .share ul {
  display: inline-block;
  vertical-align: middle;
}
.our-prodet .prodet-1 .box .text .share ul li {
  width: auto;
  margin: 0 5px;
}
.our-prodet .prodet-1 .box .text .share ul li a {
  display: block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  color: #fff;
  border-radius: 3px;
}
.our-prodet .prodet-1 .box .text .share ul li:nth-child(1) a {
  background-color: #1976d2;
}
.our-prodet .prodet-1 .box .text .share ul li:nth-child(2) a {
  background-color: #03a9f4;
}
.our-prodet .prodet-1 .box .text .share ul li:nth-child(3) a {
  background-color: #007ab9;
}
.our-prodet .prodet-1 .box .text .share ul li:nth-child(4) a {
  background-color: #f44336;
}
.our-prodet .prodet-1 .box .text a.contact {
  display: inline-block;
  font-size: 12px;
  background-color: #6094d3;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  margin-top: 45px;
}
.our-prodet .prodet-2 {
  padding: 70px 0;
}
.our-prodet .prodet-2 .box {
  padding: 25px 30px;
  border: 1px solid #d2d2d2;
  border-radius: 10px;
}
.our-prodet .prodet-2 .box .options ul {
  position: relative;
}
.our-prodet .prodet-2 .box .options ul::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #bfbfbf;
  position: absolute;
  bottom: 0;
  left: 0;
}
.our-prodet .prodet-2 .box .options ul li {
  width: auto;
  font-size: 15px;
  font-weight: bold;
  position: relative;
  padding-bottom: 20px;
  cursor: pointer;
}
.our-prodet .prodet-2 .box .options ul li:not(:last-child) {
  margin-right: 35px;
}
.our-prodet .prodet-2 .box .options ul li.active::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #0059a0;
  z-index: 1;
}
.our-prodet .prodet-2 .box .ret {
  margin-top: 30px;
}
.our-prodet .prodet-2 .box .ret strong{
  font-weight: bold;
}
.our-prodet .prodet-3 {
  background-color: #ecf1f7;
  padding: 50px 0 90px;
}
.our-prodet .prodet-3 .box {
  padding: 0 120px;
}
.our-prodet .prodet-3 .box .left {
  width: 50%;
}
.our-prodet .prodet-3 .box .left h3 {
  font-size: 22px;
  font-weight: bold;
}
.our-prodet .prodet-3 .box .left .text {
  font-size: 15px;
  line-height: 25px;
  font-weight: bold;
  color: #494a4b;
  margin-top: 35px;
}
.our-prodet .prodet-3 .box .left .text p.company {
  min-height: 66px;
}
.our-prodet .prodet-3 .box .left .text p.tel {
  min-height: 66px;
}
.our-prodet .prodet-3 .box .left .text p.email {
  min-height: 200px;
}
.our-prodet .prodet-3 .box .right {
  width: 50%;
}
.our-prodet .prodet-3 .box .right label {
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}
.our-prodet .prodet-3 .box .right input {
  width: 100%;
  padding: 10px;
  border: 1px solid #000;
  margin-bottom: 15px;
  background: transparent;
}
.our-prodet .prodet-3 .box .right textarea {
  width: 100%;
  border: 1px solid #000;
  height: 140px;
  padding: 10px;
  background: transparent;
}
.our-prodet .prodet-3 .box .right button {
  font-size: 13px;
  background-color: #6094d3;
  color: #fff;
  border: none;
  width: 145px;
  height: 38px;
  margin-top: 5px;
}
.our-prodet .prodet-4 {
  padding: 65px 0;
}
.our-prodet .prodet-4 .tit {
  position: relative;
}
.our-prodet .prodet-4 .tit h3 {
  font-size: 23px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}
.our-prodet .prodet-4 .tit h3::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #6797bc;
  left: 0;
  bottom: 0;
}
.our-prodet .prodet-4 .tit .tab span {
  display: inline-block;
  width: 38px;
  height: 38px;
  background-color: #6094d3;
  color: #fff;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  margin: 0 5px;
}
.our-prodet .prodet-4 .tit::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #dddddd;
  left: 0;
  bottom: 0;
}
.our-prodet .prodet-4 .box {
  margin-top: 30px;
}
.our-prodet .prodet-4 .box ul {
  margin: -15px;
}
.our-prodet .prodet-4 .box ul li {
  padding: 15px;
}
.our-prodet .prodet-4 .box ul li a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .our-prodet .prodet-1 .box .img ul li a {
    height: auto;
  }
  .our-prodet .prodet-3 .box {
    padding: 0;
  }
}
@media screen and (max-width: 1000px) {
  .our-prodet .prodet-1 {
    padding-top: 0;
  }
  .our-prodet .prodet-1 .box .text {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
  .our-prodet .prodet-1 .box .gallery {
    width: 20%;
  }
  .our-prodet .prodet-1 .box .img {
    width: 80%;
  }
}
@media screen and (max-width: 500px) {
  .our-prodet .prodet-3 .box .left {
    display: none;
  }
  .our-prodet .prodet-3 .box .right {
    width: 100%;
  }
  .our-prodet .prodet-4 .box ul {
    margin: -5px;
  }
  .our-prodet .prodet-4 .box ul li {
    padding: 5px;
  }
  .our-prodet .prodet-2 .box .options ul li:not(:last-child) {
    margin-right: 20px;
  }
  .our-prodet .prodet-2 .box {
    padding: 25px 10px;
  }
  .our-prodet .prodet-1 .box .text .content {
    font-size: 14px;
  }
  .our-prodet .prodet-2 .box .options ul li {
    font-size: 13px;
    padding-bottom: 10px;
  }
  .our-prodet .prodet-4 .tit h3 {
    font-size: 20px;
  }
  .our-prodet .prodet-3 .box .right label {
    font-size: 14px;
  }
  .our-prodet .prodet-1 .box .text .mode {
    margin-top: 20px;
  }
}





/* 内页样式 */
.inner-page {
    position: relative;
    z-index: 0;
}
.inner-page .sidebar-left {
    width: 25%;
}
.inner-page .sidebar-left .box {
    margin-bottom: 30px;
}
.inner-page .sidebar-left .box:last-child {
    margin-bottom: 0;
}
.inner-page .sidebar-left .box h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}
.inner-page .sidebar-left .box ul li {
  font-size: 15px;
    color: #707070;
    border-bottom: solid 1px #ccc;
    padding: 3px;
    margin-bottom: 5px;
}
.inner-page .sidebar-left .box ul li a {
    display: block;
    padding: 5px 0;
    position: relative;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.inner-page .sidebar-left .box ul li a.child:after {
    content: "\f105";
    position: absolute;
    font-family: "FontAwesome";
    top: 0;
    right: 0;
    font-size: 16px;
}
.inner-page .sidebar-left .box ul li a:hover,
.inner-page .sidebar-left .box ul li a.active {
    color: #6094d3;
    font-weight: bold;
}
.inner-page .sidebar-left .box ul li ul {
    padding-left: 10px;
    display: none;
}
.inner-page .sidebar-left .box ul li.active a.child {
    color: #6094d3;
}
.inner-page .sidebar-left .box ul li.active a.child:after {
    content: "\f107";
}
.inner-page .sidebar-right {
    width: 75%;
    padding-left: 30px;
}
.inner-page .m-page {
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-top: 30px;
    font-size: 14px;
    color: #333;
}
.inner-page .m-page a,
.inner-page .m-page span {
    margin: 0 10px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.inner-page .m-page a:hover,
.inner-page .m-page .cud {
    color: #6094d3;
}
.about-page .about-1 {
    padding: 90px 0;
}
.about-page .about-1 .left {
    padding-right: 15px;
    vertical-align: middle;
}
.about-page .about-1 .left h3 {
    font-size: 28px;
    color: #333;
    font-weight: bold;
}
.about-page .about-1 .left h5 {
    font-size: 15px;
    color: #333;
    margin: 10px 0 20px;
    font-weight: bold;
}
.about-page .about-1 .left .text {
    font-size: 14px;
    color: #707070;
    line-height: 24px;
    max-height: 240px;
    overflow-y: auto;
}
.about-page .about-1 .right {
    padding-left: 15px;
    vertical-align: middle;
}
.about-page .about-2 {
    background: #f7f7f7;
    padding: 80px 0;
}
.about-page .about-2 .left {
    vertical-align: middle;
}
.about-page .about-2 .left h3 {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    line-height: 30px;
}
.about-page .about-2 .left .text {
    font-size: 14px;
    color: #707070;
    line-height: 24px;
    margin-top: 25px;
}
.about-page .about-2 .right {
    vertical-align: middle;
}
.about-page .about-2 .right ul {
    margin: -15px 0;
}
.about-page .about-2 .right ul li {
    padding: 15px 0;
}
.about-page .about-2 .right ul li h4 {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}
.about-page .about-2 .right ul li span {
    display: block;
    width: 100%;
    height: 6px;
    background: #ebebeb;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}
.about-page .about-2 .right ul li span i {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    border-radius: 3px;
    background: #ff4545;
    -webkit-transition: 2s .5s;
    -moz-transition: 2s .5s;
    -ms-transition: 2s .5s;
    -o-transition: 2s .5s;
    transition: 2s .5s;
}
.about-page .about-2 .right ul li:nth-child(1) span i {
    width: 0;
}
.about-page .about-2 .right ul li:nth-child(2) span i {
    width: 0;
}
.about-page .about-2 .right ul li:nth-child(3) span i {
    width: 0;
}
.about-page .about-2 .right ul li.active:nth-child(1) span i {
    width: 60%;
}
.about-page .about-2 .right ul li.active:nth-child(2) span i {
    width: 70%;
}
.about-page .about-2 .right ul li.active:nth-child(3) span i {
    width: 80%;
}
.about-page .about-3 {
    padding: 100px 0;
    text-align: center;background: #f6f6f6;margin-bottom: 50px;
}
.about-page .about-3 ul {
    margin: 0 -20px;
}
.about-page .about-3 ul li {
    padding: 0 20px;
}
.about-page .about-3 ul li i {
    display: block;
}
.about-page .about-3 ul li i img {
    max-height: 70px;
}
.about-page .about-3 ul li h4 {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin: 20px 0;
}
.about-page .about-3 ul li p {
    color: #777;
    line-height: 24px;
    font-size: 14px;
}
.about-page .about-4 h3 {
    font-size: 32px;
    color: #333;
    text-align: center;
    text-transform: capitalize;
}
.about-page .about-4 .box {
    padding-top: 30px;
    padding-bottom: 60px;
    border-bottom: 1px solid #eee;
}
.about-page .about-4 .box ul {
    margin: 0 -15px;
}
.about-page .about-4 .box ul li {
    padding: 0 15px;
}
.about-page .about-4 .box ul li a.img-box {
    display: block;
}
.about-page .about-4 .box ul li a.img-box h5 {
    position: relative;
    z-index: 1;
    font-size: 14px;
    padding: 10px 0;
    background: white;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.faq-page h3 {
    font-size: 14px;
    color: #333;
    line-height: 24px;
    padding: 3px 0;
}
.faq-page p {
    font-size: 14px;
    color: #777;
    line-height: 24px;
}
.faq-page .top {
    padding: 80px 0 60px;
}
.faq-page .bottom {
    padding-bottom: 80px;
    border-bottom: 1px solid #eee;
}
.faq-page .bottom ul li {
    margin-bottom: 10px;
    border: 1px solid #efefef;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.faq-page .bottom ul li:last-child {
    margin-bottom: 0;
}
.faq-page .bottom ul li h3 {
    background: #f8f8f8;
    padding: 3px 30px 3px 10px;
    position: relative;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    cursor: pointer;
    cursor: hand;
}
.faq-page .bottom ul li h3:after {
    content: "\f067";
    font-family: "FontAwesome";
    color: #999;
    font-size: 14px;
    position: absolute;
    right: 10px;
    top: 3px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.faq-page .bottom ul li .text {
    padding: 15px 20px;
    display: none;
}
.faq-page .bottom ul li.active {
    border-color: #6094d3;
}
.faq-page .bottom ul li.active h3 {
    background: #6094d3;
    color: white;
}
.faq-page .bottom ul li.active h3:after {
    content: "\f068";
    color: white;
}
.product-page .sidebar-box {
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}
.product-page .sidebar-right ul {
    text-align: left;
    margin: -10px;
}
.product-page .sidebar-right ul li {
    padding: 10px;
}
/*.product-page .sidebar-right ul li .box {
    border: solid 1px #ccc;
    padding: 10px;
}*/



.product-page .sidebar-right ul li a.img-box {
    width: 100%;
    display: block;
    border-radius: 30px;
}
.product-page .sidebar-right ul li a.img-box img {
    width: 100%;
}
.product-page .sidebar-right ul li .content {
    display: block;
    margin-top: 10px;
}
.product-page .sidebar-right ul li .content h5 {
    font-size: 14px;
    color: #929292;
    padding-right: 70px;
    position: relative;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.product-page .sidebar-right ul li .content h5:after {
    content: "\f005\f005\f005\f005\f123";
    font-family: "FontAwesome";
    color: #6094d3;
    position: absolute;
    right: 0;
    top: 0;
}
.product-page .sidebar-right ul li .content h4 {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-top: 6px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.product-page .sidebar-right ul li .content h4:hover {
    color: #6094d3;
}
.cloudzoom-blank,
.cloudzoom-zoom-inside {
    cursor: crosshair;
}
.prodet-page .prodet-1 {
    padding: 80px 0;
}
.prodet-page .prodet-1 .img {
    padding-right: 15px;
}
.prodet-page .prodet-1 .img .big {
    display: block;
}
.prodet-page .prodet-1 .img .big img {
    width: 100%;
}
.prodet-page .prodet-1 .img .gallery {
    padding-top: 15px;
    overflow: hidden;
}
.prodet-page .prodet-1 .img .gallery ul {
    margin: -10px;
}
.prodet-page .prodet-1 .img .gallery ul li {
    padding: 10px;
}
.prodet-page .prodet-1 .img .gallery ul li a {
    display: block;
}
.prodet-page .prodet-1 .img .gallery ul li img {
    border: 1px solid transparent;
}
.prodet-page .prodet-1 .img .gallery ul li img.cloudzoom-gallery-active {
    border-color: #6094d3;
}
.prodet-page .prodet-1 .img .gallery ul .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    color: transparent;
    border: none;
    z-index: 1;
    outline: none;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    opacity: 0;
}
.prodet-page .prodet-1 .img .gallery ul .slick-arrow.slick-prev {
    background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
    left: 10px;
    background-size: 10px;
}
.prodet-page .prodet-1 .img .gallery ul .slick-arrow.slick-next {
    background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
    right: 10px;
    background-size: 10px;
}
.prodet-page .prodet-1 .img .gallery ul .slick-arrow:hover {
    background-color: #6094d3;
}
.prodet-page .prodet-1 .img .gallery ul:hover .slick-arrow {
    opacity: 1;
}
.prodet-page .prodet-1 .text {
    padding-left: 15px;
}
.prodet-page .prodet-1 .text h3 {
    font-size: 20px;
    color: #333;
}
.prodet-page .prodet-1 .text .content {
    padding: 30px 0;
    margin: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    color: #666;
}
.prodet-page .prodet-1 .text .content table td {
    border-color: #eee;
}
.prodet-page .prodet-1 .text .share ul li {
    font-size: 16px;
    color: #999;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin-right: 30px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.prodet-page .prodet-1 .text .share ul li:last-child {
    margin-right: 0;
}
.prodet-page .prodet-1 .text .share ul li h6 {
    font-size: 14px;
    color: #333;
}
.prodet-page .prodet-1 .text .share ul li:hover {
    color: #6094d3;
}
.prodet-page .prodet-2 {
    padding: 80px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.prodet-page .prodet-2 .top {
    text-align: center;
}
.prodet-page .prodet-2 .top ul li {
    font-size: 18px;
    color: #999;
    display: inline-block;
    vertical-align: middle;
    margin: 3px 15px;
    cursor: pointer;
    cursor: hand;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.prodet-page .prodet-2 .top ul li.active,
.prodet-page .prodet-2 .top ul li:hover {
    color: #333;
}
.prodet-page .prodet-2 .bottom {
    padding-top: 50px;
    color: #666;
    font-size: 14px;
    line-height: 24px;
}
.prodet-page .prodet-3 {
    padding: 90px 0;
    border-bottom: 1px solid #eee;
}
.prodet-page .prodet-3 h3 {
    font-size: 28px;
    color: #333;
    text-align: center;
}
.prodet-page .prodet-3 h3 small {
    display: block;
    font-size: 14px;
    color: #999;
    margin-top: 0;
}
.prodet-page .prodet-3 .list {
    padding-top: 40px;
}
.prodet-page .prodet-3 .list ul {
    text-align: left;
    margin: -10px;
}
.prodet-page .prodet-3 .list ul li {
    padding: 10px;
}
.prodet-page .prodet-3 .list ul li a.img-box {
    width: 100%;
    display: block;
}
.prodet-page .prodet-3 .list ul li a.img-box img {
    width: 100%;
}
.prodet-page .prodet-3 .list ul li .content {
    display: block;
    margin-top: 10px;
}
.prodet-page .prodet-3 .list ul li .content h5 {
    font-size: 14px;
    color: #929292;
    padding-right: 70px;
    position: relative;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.prodet-page .prodet-3 .list ul li .content h5:after {
    content: "\f005\f005\f005\f005\f123";
    font-family: "FontAwesome";
    color: #6094d3;
    position: absolute;
    right: 0;
    top: 0;
}
.prodet-page .prodet-3 .list ul li .content h4 {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-top: 6px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.prodet-page .prodet-3 .list ul li .content h4:hover {
    color: #6094d3;
}
.gallery-page {
    padding: 80px 0;
}
.gallery-page ul {
    margin: -10px;
}
.gallery-page ul li {
    padding: 10px;
}
.gallery-page ul li a.img-box {
    display: block;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.gallery-page ul li h5 {
    position: relative;
    z-index: 1;
    background: white;
    padding: 6px 10px;
    font-size: 16px;
}
.gallery-page ul li p{
  padding: 5px 10px;
  font-size: 14px;
}
.news-page {
    padding: 80px 0;
}
.news-page ul {
    margin: -15px;
}
.news-page ul li {
    padding: 15px;
}
.news-page ul li a.img-box {
    display: block;
}
.news-page ul li .content {
    padding-top: 20px;
}
.news-page ul li .content h3 {
    font-size: 24px;
    color: #333;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.news-page ul li .content h3:hover {
    color: #6094d3;
}
.news-page ul li .content .tag {
    font-size: 14px;
    color: #999;
    display: block;
    margin: 10px 0;
}
.news-page ul li .content .tag i {
    color: #6094d3;
}
.news-page ul li .content p {
    font-size: 15px;
    color: #666;
    line-height: 24px;
}
.news-page ul li .content a.more {
    display: inline-block;
    vertical-align: middle;
    line-height: 40px;
    height: 40px;
    padding: 0 40px;
    border: 1px solid #eee;
    font-size: 14px;
    color: #333;
    margin-top: 20px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.news-page ul li .content a.more:hover {
    background: #333;
    color: white;
}
.newdet-page {
    padding: 80px 0;
}
.newdet-page .box {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}
.newdet-page .box:after {
    content: '';
    display: block;
    clear: both;
}
.newdet-page h3 {
    font-size: 24px;
    color: #333;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.newdet-page h3:hover {
    color: #6094d3;
}
.newdet-page .tag {
    font-size: 14px;
    color: #999;
    display: block;
    margin: 10px 0;
}
.newdet-page .tag i {
    color: #6094d3;
}
.newdet-page .content {
    font-size: 15px;
    line-height: 24px;
    color: #666;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}
.newdet-page .m-link {
    font-size: 14px;
    color: #333;
    max-width: 40%;
    float: left;
}
.newdet-page .m-link a {
    color: #999;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 80%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.newdet-page .m-link a:hover {
    text-decoration: underline;
    color: #6094d3;
}
.newdet-page .share {
    float: right;
    text-align: right;
}
.newdet-page .share ul li {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #999;
    width: auto;
    margin-left: 20px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.newdet-page .share ul li:first-child {
    margin-left: 0;
}
.newdet-page .share ul li:hover {
    color: #6094d3;
}
.contact-page .contact-1 {
    padding-top: 30px;
}
.contact-page .contact-1 .amap-copyright,
.contact-page .contact-1 .amap-logo {
    display: none  !important;
}
.contact-page .contact-1 .button-group .button {
    background: #6094d3 !important;
}
.contact-page .contact-2 .box {
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}
.contact-page .contact-2 .box h3 {
    font-size: 32px;
    color: #0d95e8;
    margin-bottom: 40px;
}
.contact-page .contact-2 .box .left {
    width: 30%;
    padding-right: 5%;
}
.contact-page .contact-2 .box .left .list ul li {
    padding-bottom: 40px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}
.contact-page .contact-2 .box .left .list ul li h4 {
    font-size: 20px;
    color: #0d95e8;
    margin-bottom: 10px;
}
.contact-page .contact-2 .box .left .list ul li h4 i {
    font-size: 32px;
    color: #999;
    width: 50px;
}
.contact-page .contact-2 .box .left .list ul li h4 i.fa-home {
    font-size: 40px;
}
.contact-page .contact-2 .box .left .list ul li h4 i.fa-phone {
    font-size: 36px;
}
.contact-page .contact-2 .box .left .list ul li p {
    font-size: 14px;
    color: #666;
    line-height: 24px;
}
.contact-page .contact-2 .box .left .list ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.contact-page .contact-2 .box .right {
    width: 70%;
}
.form form ul li {
    padding-bottom: 20px;
}
.form form ul li:last-child {
    padding-bottom: 0;
}
.form form ul li label {
    font-size: 14px;
    color: #999;
    display: block;
    margin-bottom: 5px;
}
.form form ul li input,
.form form ul li textarea {
    width: 100%;
    line-height: 24px;
    border: 1px solid #eee;
    padding: 13px 15px;
    font-size: 14px;
    color: #333;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    background: white;
}
.form form ul li input:focus,
.form form ul li textarea:focus {
    border-color: #6094d3;
}
.form form ul li textarea {
    resize: vertical;
    -webkit-transition: .5s all,0s height;
    -moz-transition: .5s all,0s height;
    -ms-transition: .5s all,0s height;
    -o-transition: .5s all,0s height;
    transition: .5s all,0s height;
    height: 120px;
}
.form form ul li input[type="submit"] {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    padding: 8px 40px;
}
.form form ul li input[type="submit"]:hover {
    color: white;
    background: #222;
}
.prodet-page .prodet-2 .bottom .form h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}
.prodet-page .prodet-2 .bottom .form {
  max-width: 700px;
  display: block;
  margin: 0 auto;
}
.prodet-page .prodet-2 .bottom .form form ul li input, .prodet-page .prodet-2 .bottom .form form ul li textarea {
  padding: 6px 15px;
}
@media screen and (max-width: 1500px) {
    .inner-banner .box h3 {
        font-size: 30px;
        line-height: 30px;
    }
    #mapContainer {
        height: 340px !important;
    }
    .contact-page .contact-2 .box h3 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .inner-banner {
        padding: 0 20px;
    }
    .news-page ul li .content h3 {
        font-size: 20px;
    }
}
@media screen and (max-width: 1250px) {
    .inner-banner .box h3 {
        font-size: 26px;
        line-height: 26px;
    }
    .inner-banner .box .mbx {
        margin-top: 10px;
    }
    .inner-banner .box {
        padding: 40px 0;
    }
    .about-page .about-1 {
        padding: 50px 0;
    }
    .about-page .about-1 .left h3 {
        font-size: 24px;
    }
    .about-page .about-2 .left h3 {
        font-size: 20px;
        line-height: 26px;
    }
    .about-page .about-3 {
        padding: 60px 0;
    }
    .about-page .about-3 ul li i {
        display: block;
    }
    .about-page .about-3 ul li i img {
        height: 50px;
    }
    .about-page .about-3 ul li h4 {
        margin: 10px 0;
    }
    .about-page .about-4 h3 {
        font-size: 26px;
    }
    .about-page .about-4 .box ul li {
        padding: 0 5px;
    }
    .about-page .about-4 .box ul {
        margin: 0 -5px;
    }
    .faq-page .top {
        padding: 60px 0 30px;
    }
    .faq-page .bottom {
        padding-bottom: 60px;
    }
    .gallery-page {
        padding: 40px 0;
    }
    .gallery-page ul li h5 {
        font-size: 14px;
    }
    .product-page .sidebar-right ul li .content h4,
    .prodet-page .prodet-3 .list ul li .content h4 {
        font-size: 14px;
    }
    .product-page .sidebar-right ul li .content h5,
    .prodet-page .prodet-3 .list ul li .content h5 {
        font-size: 12px;
    }
    .product-page .sidebar-box,
    .prodet-page .prodet-1,
    .prodet-page .prodet-2,
    .prodet-page .prodet-3,
    .newdet-page,
    .contact-page .contact-2 .box,
    .news-page {
        padding: 60px 0;
    }
    .prodet-page .prodet-3 h3 {
        font-size: 24px;
    }
    .news-page ul li .content h3 {
        font-size: 18px;
    }
    .news-page ul li {
        padding: 5px;
    }
    .news-page ul {
        margin: -5px;
    }
    .contact-page .contact-2 .box h3 {
        font-size: 24px;
        line-height: 28px;
    }
    .contact-page .contact-2 .box .left .list ul li h4 {
        font-size: 16px;
    }
    .contact-page .contact-2 .box .left .list ul li h4 i {
        font-size: 26px;
        width: 40px;
    }
    .contact-page .contact-2 .box .left .list ul li h4 i.fa-phone {
        font-size: 32px;
    }
    .contact-page .contact-2 .box .left .list ul li h4 i.fa-home {
        font-size: 36px;
    }
    .form form ul li input,
    .form form ul li textarea {
        padding: 8px 15px;
    }
}
@media screen and (max-width: 1000px) {
    .contact-page .contact-2 .box .left {
        width: 40%;
    }
    .form {
        width: 60%;
    }
    #mapContainer {
        height: 300px !important;
    }
    .contact-page .contact-2 .box h3 {
        font-size: 20px;
        line-height: 26px;
    }
    .newdet-page h3 {
        font-size: 20px;
    }
    #footer .footer-top h3 {
        font-size: 24px;
    }
    .news-page ul li {
        width: 50% !important;
    }
    .prodet-page .prodet-1 .img .gallery ul li {
        padding: 5px;
    }
    .prodet-page .prodet-1 .img .gallery ul {
        margin: -5px;
    }
    .prodet-page .prodet-1 .text .content {
        padding: 20px 0;
    }
    .inner-page .sidebar-right {
        padding-left: 0;
        width: 100%;
    }
    .inner-page .sidebar-left {
        display: none;
    }
    .product-page .sidebar-right ul li {
        padding: 5px;
    }
    .product-page .sidebar-right ul {
        margin: -5px;
    }
    .product-page .sidebar-box {
        border-bottom: none;
    }
    .about-page .about-3 ul li {
        width: 50% !important;
        padding: 15px;
    }
    .about-page .about-3 ul {
        margin: -15px;
    }
    .about-page .about-4 h3 {
        font-size: 24px;
    }
    .about-page .about-4 .box {
        padding-bottom: 40px;
    }
}
@media screen and (max-width: 700px) {
    .about-page .about-1 .left {
        padding: 0;
        width: 100%;
    }
    .about-page .about-1 .right {
        display: none;
    }
    .about-page .about-1 .left h3 {
        font-size: 20px;
    }
    .about-page .about-2 .left {
        width: 100%;
    }
    .about-page .about-2 .right {
        width: 100%;
        padding-top: 20px;
    }
    .about-page .about-2 .right ul li {
        padding: 10px 0;
    }
    .inner-banner {
        padding: 0 10px;
    }
    .prodet-page .prodet-1 .img {
        width: 100%;
        padding: 0;
    }
    .prodet-page .prodet-1 .img .big {
        max-width: 400px;
        display: block;
        margin: 0 auto;
    }
    .prodet-page .prodet-1 .text {
        width: 100%;
        padding-left: 0;
        padding-top: 30px;
    }
    .prodet-page .prodet-2 .top ul li {
        font-size: 16px;
    }
    .news-page ul li .content a.more {
        font-size: 12px;
        line-height: 32px;
        height: 32px;
        padding: 0 25px;
    }
    #mapContainer {
        height: 240px !important;
    }
    .contact-page .contact-2 .box .left {
        width: 100%;
        padding-right: 0;
    }
    .form {
        width: 100%;
        padding-top: 30px;
    }
    .contact-page .contact-2 .box .left .list ul li {
        padding-bottom: 20px;
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 500px) {
    #footer .footer-top h3 {
        font-size: 20px;
    }
    .product-page .sidebar-box,
    .prodet-page .prodet-1,
    .prodet-page .prodet-2,
    .prodet-page .prodet-3,
    .newdet-page,
    .contact-page .contact-2 .box,
    .news-page {
        padding: 40px 0;
    }
    .news-page ul li,
    .about-page .about-3 ul li {
        width: 100% !important;
    }
    .about-page .about-4 h3 {
        font-size: 20px;
    }

    .our-prodet .prodet-1 .box .gallery ul li a{
      height: auto;
    }
}